home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 742 / rkrm_lib3 / rkrm_lib3.lha / Utility / a2d.c < prev    next >
C/C++ Source or Header  |  1992-09-03  |  3KB  |  98 lines

  1. ;/* a2d.c - Execute me to compile me with SAS C 5.10
  2. LC -b1 -cfis -j73 a2d.c
  3. Blink FROM LIB:c.o,a2d.o TO a2d LIBRARY LIB:LC.lib,LIB:Amiga.lib
  4. quit
  5. */
  6.  
  7. /*
  8. Copyright (c) 1992 Commodore-Amiga, Inc.
  9.  
  10. This example is provided in electronic form by Commodore-Amiga, Inc. for
  11. use with the "Amiga ROM Kernel Reference Manual: Libraries", 3rd Edition,
  12. published by Addison-Wesley (ISBN 0-201-56774-1).
  13.  
  14. The "Amiga ROM Kernel Reference Manual: Libraries" contains additional
  15. information on the correct usage of the techniques and operating system
  16. functions presented in these examples.  The source and executable code
  17. of these examples may only be distributed in free electronic form, via
  18. bulletin board or as part of a fully non-commercial and freely
  19. redistributable diskette.  Both the source and executable code (including
  20. comments) must be included, without modification, in any copy.  This
  21. example may not be published in printed form or distributed with any
  22. commercial product.  However, the programming techniques and support
  23. routines set forth in these examples may be used in the development
  24. of original executable software products for Commodore Amiga computers.
  25.  
  26. All other rights reserved.
  27.  
  28. This example is provided "as-is" and is subject to change; no
  29. warranties are made.  All use is at your own risk. No liability or
  30. responsibility is assumed.
  31. */
  32.     #include <exec/types.h>
  33.     #include <exec/memory.h>
  34.     #include <dos/datetime.h>
  35.     #include <devices/timer.h>
  36.  
  37.     #include <clib/exec_protos.h>
  38.     #include <clib/timer_protos.h>
  39.     #include <clib/utility_protos.h>
  40.  
  41.     #include <stdio.h>
  42.  
  43.     LONG main(void);
  44.  
  45.     struct Library *TimerBase;
  46.     struct Library *UtilityBase;
  47.  
  48.     LONG main(void)
  49.     {
  50.       struct ClockData *clockdata;
  51.       struct timerequest *tr;
  52.       struct timeval *tv;
  53.       LONG seconds;
  54.  
  55.       if (UtilityBase = OpenLibrary("utility.library", 37))
  56.       {
  57.         if (tr = AllocMem(sizeof(struct timerequest), MEMF_CLEAR))
  58.         {
  59.           if (tv = AllocMem(sizeof(struct timeval), MEMF_CLEAR))
  60.           {
  61.             if (clockdata = AllocMem(sizeof(struct ClockData), MEMF_CLEAR))
  62.             {
  63.               if (!(OpenDevice("timer.device", UNIT_VBLANK, (struct IORequest *)tr, 0) ))
  64.               {
  65.                 TimerBase = tr->tr_node.io_Device;
  66.  
  67.                 GetSysTime(tv);
  68.  
  69.                 printf("GetSysTime():\t%d %d\n", tv->tv_secs, tv->tv_micro);
  70.  
  71.                 Amiga2Date(tv->tv_secs, clockdata);
  72.  
  73.                 printf("Amiga2Date():  sec %d min %d hour %d\n", clockdata->sec,
  74.                         clockdata->min, clockdata->hour);
  75.  
  76.                 printf("               mday %d month %d year %d wday %d\n", clockdata->mday,
  77.                        clockdata->month, clockdata->year, clockdata->wday);
  78.  
  79.                 seconds = CheckDate(clockdata);
  80.  
  81.                 printf("CheckDate():\t%ld\n", seconds);
  82.  
  83.                 seconds = Date2Amiga(clockdata);
  84.  
  85.                 printf("Date2Amiga():\t%ld\n", seconds);
  86.  
  87.                 CloseDevice((struct IORequest *)tr);
  88.               }
  89.               FreeMem(clockdata, sizeof(struct ClockData));
  90.             }
  91.             FreeMem(tv, sizeof(struct timeval));
  92.           }
  93.           FreeMem(tr, sizeof(struct timerequest));
  94.         }
  95.         CloseLibrary(UtilityBase);
  96.       }
  97.     }
  98.